* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Source Han sans-serif;
}

.marT16 {
  margin-top: 16px !important;
}

.videoBanner {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}

.videoBanner .videos {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  /* 保持比例并覆盖整个区域 */
  z-index: -1;
  /* 确保视频在内容下方 */
}

.videoBanner .txt {
  position: absolute;
  top: 520px;
  left: 0;
  padding: 0 calc((100% - 1200px) / 2);
  font-weight: 900;
  font-size: 48px;
  color: #ffffff;
  line-height: 48px;
}

.videoBanner .txt > p {
  margin-top: 24px;
  font-weight: 350;
  font-size: 30px;
  color: #ffffff;
  line-height: 30px;
}

.videoBanner .iconBox {
  position: absolute;
  top: 740px;
  left: 50%;
  transform: translateX(-50%);
  animation: moveUpDown 2s infinite;
}

.videoBanner .iconBox > img {
  display: block;
  margin: 0 auto;
  width: 32px;
  height: 44px;
}

.videoBanner .iconBox > p {
  display: block;
  margin: 17px auto;
  font-weight: 350;
  font-size: 18px;
  color: #ffffff;
  line-height: 18px;
  text-align: center;
}

@keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
    /* 向上移动 20px */
  }

  100% {
    transform: translateY(0);
  }
}

.video_box {
  display: none;
  position: relative;
}

.video_box .mask {
  position: absolute;
  top: -60px;
  width: 100%;
  height: 100vh;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.01)
  );
}

.searchOut {
  position: fixed;
  left: 0;
  top: 148px;
  width: 100vw;
  padding: 0 calc((100% - 1200px) / 2);
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  /* height: 48px;
    background: rgba(247, 247, 247, 0.5);
    border-radius: 8px 8px 8px 8px;
    border: 2px solid #FFFFFF; */
}

.mainBox {
  position: relative;
  z-index: 1;
}

.mainBox .marR0 {
  margin-right: 0px !important;
}

.mainBox .leftNav {
  position: fixed;
  left: 20px;
  top: 60%;
  transform: translateY(-50%);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-align: justify;
  letter-spacing: 4px;
  width: 48px;
  height: 140px;
  background: linear-gradient(180deg, #5dc1cf 0%, #0090ad 100%);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2);
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #ffffff;
  font-family: Source Han Sans, Source Han Sans;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  line-height: 22px;
  text-align: center;
  z-index: 980;
}

.mainBox .leftNav::after {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background: url(/static/v2/img/newHomepage/icon24.webp) no-repeat;
  background-size: 100% 100%;
  margin-top: 8px;
}

.mainBox .navFloor {
  position: fixed;
  background: #ffffff;
  width: 112px;
  left: -120px;
  top: 60%;
  transform: translateY(-50%);
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  z-index: 980;
  /* opacity: 0; */
  /* 默认透明 */
  /* pointer-events: none; */
  /* 默认不响应鼠标事件 */
  /* transition: all 0.3s ease; */
  /* 平滑过渡效果 */
}

.mainBox .navFloor .item {
  display: block;
  width: 112px;
  height: 38px;
  border-radius: 4px;
  line-height: 38px;
  text-align: center;
  font-size: 14px;
  color: #666666;
  cursor: pointer;
}

.mainBox .navFloor .active {
  background: #dafbff;
  font-family: Source Han Sans, Source Han Sans;
  font-weight: 600;
  font-size: 14px;
  color: #0099ad;
}

.mainBox .navFloor .item:hover {
  color: #0099ad;
}

.mainBox h1,
.mainBox h2,
.mainBox h3,
.mainBox h4,
.mainBox h5,
.mainBox h6 {
  font-size: inherit;
  /* 继承父元素的字体大小 */
  font-weight: normal;
  /* 将字体粗细设置为正常 */
}

.mainBox a {
  text-decoration: none;
  /* 去除下划线 */
  color: inherit;
  /* 继承父元素的文本颜色 */
  outline: none;
  /* 去除聚焦时的外边框 */
}

.mainBox .tBanner {
  width: 100%;
  height: 600px;
}

.mainBox .marTvh100 {
  margin-top: 100vh;
}

.mainBox .moduleBox {
  padding: 60px calc((100% - 1200px) / 2);
}

.mainBox .unitOne {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 120px;
}

.mainBox .unitOne .sixBox {
  width: 348px;
  height: 120px;
  background: #fafafa;
  border-radius: 8px 8px 8px 8px;
  border: 1px solid #eeeeee;
  display: flex;
  flex-wrap: wrap;
}

.mainBox .unitOne .sixBox .aitem {
  width: calc(100% / 3);
  height: calc(100% / 2);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-weight: 350;
  font-size: 12px;
  line-height: 12px;
  color: #3d3d3d;
  cursor: pointer;
}

.mainBox .unitOne .sixBox .sIcon1::before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background: url(/static/v2/img/newHomepage/icon18.webp) no-repeat;
  background-size: 100% 100%;
}

.mainBox .unitOne .sixBox .sIcon1:hover::before {
  background: url(/static/v2/img/newHomepage/icon18-2.webp) no-repeat;
  background-size: 100% 100%;
}

.mainBox .unitOne .sixBox .sIcon2::before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background: url(/static/v2/img/newHomepage/icon19.webp) no-repeat;
  background-size: 100% 100%;
}

.mainBox .unitOne .sixBox .sIcon2:hover::before {
  background: url(/static/v2/img/newHomepage/icon19-2.webp) no-repeat;
  background-size: 100% 100%;
}

.mainBox .unitOne .sixBox .sIcon3::before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background: url(/static/v2/img/newHomepage/icon20.webp) no-repeat;
  background-size: 100% 100%;
}

.mainBox .unitOne .sixBox .sIcon3:hover::before {
  background: url(/static/v2/img/newHomepage/icon20-2.webp) no-repeat;
  background-size: 100% 100%;
}

.mainBox .unitOne .sixBox .sIcon4::before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background: url(/static/v2/img/newHomepage/icon21.webp) no-repeat;
  background-size: 100% 100%;
}

.mainBox .unitOne .sixBox .sIcon4:hover::before {
  background: url(/static/v2/img/newHomepage/icon21-2.webp) no-repeat;
  background-size: 100% 100%;
}

.mainBox .unitOne .sixBox .sIcon5::before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background: url(/static/v2/img/newHomepage/icon22.webp) no-repeat;
  background-size: 100% 100%;
}

.mainBox .unitOne .sixBox .sIcon5:hover::before {
  background: url(/static/v2/img/newHomepage/icon22-2.webp) no-repeat;
  background-size: 100% 100%;
}

.mainBox .unitOne .sixBox .sIcon6::before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background: url(/static/v2/img/newHomepage/icon23.webp) no-repeat;
  background-size: 100% 100%;
}

.mainBox .unitOne .sixBox .sIcon6:hover::before {
  background: url(/static/v2/img/newHomepage/icon23-2.webp) no-repeat;
  background-size: 100% 100%;
}

.mainBox .unitOne .sixBox .aitem:hover {
  background: linear-gradient(180deg, #5dc1cf 0%, #0090ad 100%);
  border-radius: 4px 4px 4px 4px;
  color: #ffffff;
}

.mainBox .unitOne .threeBox {
  width: 264px;
  border-radius: 8px 8px 8px 8px;
  border: 1px solid #eeeeee;
  cursor: pointer;
}

.mainBox .unitOne .threeBox .tBox {
  width: 264px;
  height: 120px;
  border-radius: 8px 8px 0px 0px;
  /* border: 1px solid #EEEEEE; */
  padding: 23px 20px;
}

.mainBox .unitOne .threeBox .tBox .iconName {
  display: flex;
  justify-content: flex-start;
  gap: 17px;
}

.mainBox .unitOne .threeBox .tBox .iconName > img {
  width: 44px;
  height: 44px;
}

.mainBox .unitOne .threeBox .tBox .iconName > p {
  margin-top: 17px;
  font-weight: 600;
  font-size: 16px;
  color: #333333;
  line-height: 16px;
}

.mainBox .unitOne .threeBox .tBox > p {
  margin-top: 15px;
  font-weight: 350;
  font-size: 14px;
  color: #666666;
}

.mainBox .unitOne .threeBox .bBox {
  width: 264px;
  height: 0px;
  background: linear-gradient(180deg, #5dc1cf 0%, #0090ad 100%);
  border-radius: 0px 0px 8px 8px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 350;
  color: #ffffff;
  line-height: 14px;
  transition: all 0.3s ease;
  overflow: hidden;
}

/* .mainBox .unitOne .threeBox .bBox::after {
    display: block;
    content: "";
    width: 20px;
    height: 20px;
    background: url(/static/v2/img/newHomepage/) no-repeat;
    background-size: 100% 100%;
} */

.mainBox .unitOne .threeBox:hover .bBox {
  height: 30px;
}

.mainBox .moduleBg1 {
  background: #ffffff;
}

.mainBox .moduleBg2 {
  width: 100%;
  background: url(/static/v2/img/newHomepage/homeBg2.webp) no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBg3 {
  background: #ffffff;
  margin-top: -1px;
}

.mainBox .moduleBg4 {
  width: 100%;
  background: url(/static/v2/img/newHomepage/homeBg2.webp) no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBg5 {
  background: #ffffff;
}

.mainBox .moduleBg6 {
  width: 100%;
  height: 637px;
  background: url(/static/v2/img/newHomepage/homeBg6.webp) no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBg7 {
  width: 100%;
  height: 804px;
  background: url(/static/v2/img/newHomepage/homeBg7.webp) no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBg8 {
  background: #f4f5f5;
}

.mainBox .moduleBg {
  width: 100%;
  height: 100%;
  background: url() no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBg {
  width: 100%;
  height: 100%;
  background: url() no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .titleOption {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-weight: 600;
  font-size: 28px;
  color: #111111;
  line-height: 28px;
}

.mainBox .moduleBox .white {
  color: #ffffff;
}

.mainBox .moduleBox .titleOption .options {
  display: flex;
  justify-content: space-between;
}

.mainBox .moduleBox .titleOption .options > .opt {
  height: 18px;
  line-height: 28px;
  font-weight: 350;
  font-size: 16px;
  color: #666666;
  line-height: 18px;
  width: 104px;
  text-align: center;
  cursor: pointer;
}

.mainBox .moduleBox .titleOption .options > .active {
  font-weight: 600;
  font-size: 18px;
  color: #0099ad;
  text-transform: none;
  color: #0099ad;
  position: relative;
}

.mainBox .moduleBox .titleOption .options > .active::before {
  display: block;
  content: "";
  width: 100%;
  height: 4px;
  background: #0099ad;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -24px;
}

.mainBox .moduleBox .titleOption .line1 > .active::before {
  display: block;
  content: "";
  width: 67%;
  height: 2px;
}

.mainBox .moduleBox .titleOption .line2 > .active::before {
  display: block;
  content: "";
  width: 36%;
  height: 2px;
}

.mainBox .moduleBox .projectBox {
  margin-top: 48px;
  flex-wrap: wrap;
  gap: 20px;
  display: none;
}

.mainBox .moduleBox .projectBox .leftInfo {
  width: 590px;
  height: 382px;
  border-radius: 12px 12px 12px 12px;
  padding: 36px;
}

.mainBox .moduleBox .projectBox .leftInfoBg1 {
  background: url(/static/v2/img/newHomepage/cardBg1.webp) no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .projectBox .leftInfoBg2 {
  background: url(/static/v2/img/newHomepage/cardBg2.webp) no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .projectBox .leftInfoBg3 {
  background: url(/static/v2/img/newHomepage/cardBg3-new.webp) no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .projectBox .leftInfo .htitle {
  font-weight: 600;
  font-size: 20px;
  color: #ffffff;
  line-height: 20px;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.3);
}

.mainBox .moduleBox .projectBox .leftInfo > p {
  margin-top: 16px;
  width: 100%;
  height: 110px;
  font-weight: 350;
  font-size: 14px;
  color: #ffffff;
  line-height: 22px;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.mainBox .moduleBox .projectBox .leftInfo .stitle {
  margin-top: 16px;
  width: 100%;
  height: 18px;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  line-height: 18px;
}

.mainBox .moduleBox .projectBox .leftInfo .bMore {
  margin-top: 82px;
  height: 45px;
  /*  background: #5DC1CF;
     padding: 0 24px;
    box-shadow: 0px 4px 10px 0px rgba(255, 255, 255, 0.3);
    border-radius: 4px 4px 4px 4px; */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  line-height: 45px;
  cursor: pointer;
  user-select: none;
}

.mainBox .moduleBox .projectBox .leftInfo .bMore::after {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background: url(/static/v2/img/newHomepage/icon28.webp) no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .projectBox .projectImage {
  display: block;
  margin-top: 20px;
  width: 590px;
  height: 382px;
  border-radius: 12px 12px 12px 12px;
}

.mainBox .moduleBox .showBox {
  display: flex;
}

.mainBox .moduleBox .projectBox .project {
  width: calc((100% - 60px) / 4);
  border-radius: 8px 8px 8px 8px;
  border: 1px solid #eeeeee;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  background: #ffffff;
}

.mainBox .moduleBox .projectBox .project:hover {
  z-index: 2;
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  -webkit-transform: translate3d(0, -2px, 0);
  transform: translate3d(0, -2px 0);
}

.mainBox .moduleBox .projectBox .project > img {
  width: 100%;
  height: 230px;
  display: block;
  border-radius: 8px 8px 0 0;
}

.mainBox .moduleBox .projectBox .project > .bTxt {
  width: 100%;
  padding: 24px 12px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mainBox .moduleBox .projectBox .project > .bTxt .bLine {
  width: 100%;
  padding-bottom: 16px;
  margin-bottom: 2px;
  border-bottom: 1px solid #d8d8d8;
  font-weight: 600;
  font-size: 18px;
  color: #333333;
  line-height: 19px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mainBox .moduleBox .projectBox .project:hover > .bTxt .bLine {
  color: #0099ad;
  border-bottom: 2px solid #0099ad;
}

.mainBox .moduleBox .projectBox .project > .bTxt > p {
  width: 100%;
  font-weight: 350;
  font-size: 14px;
  color: #999999;
  line-height: 14px;
  text-align: center;
  text-decoration: none;
}

.mainBox .moduleBox .projectBox .project > .bTxt > p > span {
  color: #5dc1cf;
}

.mainBox .moduleBox .advantage {
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  gap: 48px;
}

.mainBox .moduleBox .advantage .leftOut {
  width: 740px;
  overflow: hidden;
}

.mainBox .moduleBox .advantage .leftImg {
  width: 740px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.mainBox .moduleBox .advantage .leftImg > img {
  display: block;
  width: calc((100% - 20px) / 2);
  height: 200px;
  border-radius: 8px 8px 8px 8px;
}

.mainBox .moduleBox .advantage .rightInfo {
  width: 412px;
  position: relative;
}

.mainBox .moduleBox .advantage .rightInfo .tags {
  margin-top: 24px;
  display: flex;
  justify-content: flex-start;
  gap: 12px 20px;
}

.mainBox .moduleBox .advantage .rightInfo .tags > p {
  height: 32px;
  background: #fefefe;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #e8e8e8;
  padding: 0 12px;
  font-weight: 350;
  font-size: 16px;
  color: #666666;
  line-height: 32px;
}

.mainBox .moduleBox .advantage .rightInfo .txt {
  margin-top: 24px;
  font-weight: 350;
  font-size: 16px;
  color: #3d3d3d;
  line-height: 30px;
}

.mainBox .moduleBox .advantage .rightInfo .lBtn {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 45px;
  background: #5dc1cf;
  border-radius: 4px 4px 4px 4px;
  padding: 0 24px;
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
  line-height: 45px;
  text-align: center;
  cursor: pointer;
}

.mainBox .moduleBox .advantage .rightInfo .lBtn:hover {
  background: #0099ad;
}

.mainBox .moduleBox .advantage .rightInfo > h1 {
  height: 24px;
  font-family: Source Han Sans, Source Han Sans;
  font-weight: 600;
  font-size: 24px;
  color: #333333;
  line-height: 24px;
}

.mainBox .moduleBox .serviceBox {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.mainBox .moduleBox .serviceBox .service {
  width: 250px;
  height: 285px;
  border-radius: 8px;
  border: 2px solid #ffffff;
  background-color: #ffffff;
  background-image: url(/static/v2/img/newHomepage/iconBg1.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  overflow: hidden;
}

.mainBox .moduleBox .serviceBox .active {
  width: 390px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  background: linear-gradient(180deg, #5dc1cf 0%, #0090ad 100%),
    url(/static/v2/img/newHomepage/iconBg2.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-blend-mode: overlay;
}

.mainBox .moduleBox .serviceBox .service .info1 {
  display: block;
  padding: 119px 24px 0;
}

.mainBox .moduleBox .serviceBox .service .info1 > img {
  width: 60px;
  height: 60px;
}

.mainBox .moduleBox .serviceBox .service .info1 > .p1 {
  margin-top: 18px;
  font-weight: 600;
  font-size: 16px;
  color: #333333;
  line-height: 16px;
}

.mainBox .moduleBox .serviceBox .service .info1 > .p2 {
  margin-top: 20px;
  font-weight: 350;
  font-size: 12px;
  color: #333333;
  line-height: 16px;
}

.mainBox .moduleBox .serviceBox .active .info1 {
  display: none;
}

.mainBox .moduleBox .serviceBox .service .info2 {
  display: none;
}

.mainBox .moduleBox .serviceBox .active .info2 {
  display: block;
  padding: 40px 24px 0;
}

.mainBox .moduleBox .serviceBox .active .info2 .imgName {
  display: flex;
  gap: 20px;
  align-items: center;
  font-weight: 600;
  font-size: 20px;
  color: #ffffff;
}

.mainBox .moduleBox .serviceBox .active .info2 .imgName > img {
  width: 60px;
  height: 60px;
}

.mainBox .moduleBox .serviceBox .active .info2 ul {
  margin-top: 30px;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mainBox .moduleBox .serviceBox .active .info2 ul li {
  width: 338px;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  line-height: 14px;
  padding-left: 8px;
  position: relative;
  display: flex;
  align-items: center;
}

.mainBox .moduleBox .serviceBox .active .info2 ul li::before {
  display: block;
  content: "";
  background: #ffffff;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  position: absolute;
  left: 0;
}

.mainBox .moduleBox .serviceBox .active .aicon {
  width: 60px;
  height: 60px;
  position: absolute;
  left: 24px;
  top: 40px;
}

.mainBox .moduleBox .serviceBox .num1::after {
  display: block;
  content: "";
  width: 100px;
  height: 90px;
  background: url(/static/v2/img/newHomepage/iconNum1.webp) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  right: 2px;
  bottom: 2px;
  z-index: 1;
}

.mainBox .moduleBox .serviceBox .num2::after {
  display: block;
  content: "";
  width: 100px;
  height: 90px;
  background: url(/static/v2/img/newHomepage/iconNum2.webp) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  right: 2px;
  bottom: 2px;
  z-index: 1;
}

.mainBox .moduleBox .serviceBox .num3::after {
  display: block;
  content: "";
  width: 100px;
  height: 90px;
  background: url(/static/v2/img/newHomepage/iconNum3.webp) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  right: 2px;
  bottom: 2px;
  z-index: 1;
}

.mainBox .moduleBox .serviceBox .num4::after {
  display: block;
  content: "";
  width: 100px;
  height: 90px;
  background: url(/static/v2/img/newHomepage/iconNum4.webp) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  right: 2px;
  bottom: 2px;
  z-index: 1;
}

.mainBox .moduleBox .assistBox {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.mainBox .moduleBox .assistBox .assist {
  overflow: hidden;
  width: 205px;
  height: 400px;
  border-radius: 8px;
  border: 1px solid #eeeeee;
  background-color: #ffffff;
  background-image: url(/static/v2/img/newHomepage/iconBg3.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
}

.mainBox .moduleBox .assistBox .active {
  width: 300px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  background: url(/static/v2/img/newHomepage/iconBg4.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-blend-mode: overlay;
}

.mainBox .moduleBox .assistBox .assist .info1 {
  display: block;
  padding: 26px 20px 0;
  height: 100%;
}

.mainBox .moduleBox .assistBox .active .info1 {
  display: none;
}

.mainBox .moduleBox .assistBox .assist .info1 > h1 {
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  line-height: 16px;
  margin-bottom: 20px;
}

.mainBox .moduleBox .assistBox .assist .info1 > h1 {
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  line-height: 16px;
}

.mainBox .moduleBox .assistBox .assist .info1 > p {
  width: 163px;
  height: 22px;
  font-weight: 350;
  font-size: 14px;
  color: #ffffff;
  line-height: 22px;
  margin-bottom: 8px;
}

.mainBox .moduleBox .assistBox .assist .info2 {
  display: none;
}

.mainBox .moduleBox .assistBox .assist .info2 > h1 {
  font-weight: 600;
  font-size: 20px;
  color: #333333;
  line-height: 20px;
  margin-bottom: 20px;
}

.mainBox .moduleBox .assistBox .assist .info2 > p {
  width: 258px;
  font-weight: 350;
  font-size: 14px;
  color: #333333;
  line-height: 22px;
  margin-bottom: 12px;
}

.mainBox .moduleBox .assistBox .active .info2 {
  display: block;
  padding: 26px 20px 0;
  height: 100%;
  position: relative;
}

.mainBox .moduleBox .assistBox .active .info2 .abtn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 0 12px;
  height: 32px;
  background: #5dc1cf;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  line-height: 32px;
  position: absolute;
  left: 12px;
  bottom: 33px;
}

.mainBox .moduleBox .assistBox .active .info2 .abtn::after {
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  background: url(/static/v2/img/newHomepage/icon27.webp) no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .assistBox .active .aicon {
  width: 60px;
  height: 60px;
  position: absolute;
  left: 24px;
  top: 40px;
}

.mainBox .moduleBox .assistBox .icon1::after {
  display: block;
  content: "";
  width: 145px;
  height: 145px;
  background: url(/static/v2/img/newHomepage/icon5.webp) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  right: 2px;
  bottom: 2px;
  z-index: 1;
  opacity: 0.2;
}

.mainBox .moduleBox .assistBox .icon2::after {
  display: block;
  content: "";
  width: 145px;
  height: 145px;
  background: url(/static/v2/img/newHomepage/icon6.webp) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  right: 2px;
  bottom: 2px;
  z-index: 1;
  opacity: 0.2;
}

.mainBox .moduleBox .assistBox .icon3::after {
  display: block;
  content: "";
  width: 145px;
  height: 145px;
  background: url(/static/v2/img/newHomepage/icon7.webp) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  right: 2px;
  bottom: 2px;
  z-index: 1;
  opacity: 0.2;
}

.mainBox .moduleBox .assistBox .icon4::after {
  display: block;
  content: "";
  width: 145px;
  height: 145px;
  background: url(/static/v2/img/newHomepage/icon8.webp) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  right: 2px;
  bottom: 2px;
  z-index: 1;
  opacity: 0.2;
}

.mainBox .moduleBox .assistBox .icon5::after {
  display: block;
  content: "";
  width: 145px;
  height: 145px;
  background: url(/static/v2/img/newHomepage/icon9.webp) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  right: 2px;
  bottom: 2px;
  z-index: 1;
  opacity: 0.2;
}

.mainBox .moduleBox .dataBox {
  margin-top: 80px;
  display: flex;
  justify-content: flex-start;
  gap: 80px;
}

.mainBox .moduleBox .dataBox .oneData {
  font-weight: 600;
  font-size: 28px;
  color: #0099ad;
  line-height: 28px;
}

.mainBox .moduleBox .dataBox .oneData > p {
  margin-top: 12px;
  height: 14px;
  font-weight: 350;
  font-size: 14px;
  color: #666666;
  line-height: 14px;
}

.mainBox .moduleBox .bureauOut {
  margin-top: 120px;
  padding-bottom: 110px;
}

.mainBox .moduleBox .bureauOut > h1 {
  height: 20px;
  font-weight: 600;
  font-size: 20px;
  color: #333333;
  line-height: 20px;
}

.mainBox .moduleBox .mapList {
  margin-top: 24px;
  display: flex;
  justify-content: flex-start;
  position: relative;
  gap: 44px;
  /* width: 730px; */
}

.mainBox .moduleBox .mapList > .item {
  width: 48px;
  text-align: center;
  cursor: pointer;
  position: relative;
}

.mainBox .moduleBox .mapList > .item > p {
  margin-top: 12px;
  height: 14px;
  font-weight: 350;
  font-size: 14px;
  color: #333333;
  line-height: 14px;
  white-space: nowrap;
}

.mainBox .moduleBox .mapList .select p {
  position: relative;
  color: #333333;
  opacity: 1;
}

.mainBox .moduleBox .mapList .item::before {
  display: block;
  content: "";
  width: 44px;
  height: 44px;
  margin: 0 auto;
  /* box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05); */
}

.mainBox .moduleBox .mapList .item.select {
  position: relative;
}

.mainBox .moduleBox .mapList .item.select::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  background: url("/static/v2/img/mapHover1.png") no-repeat;
  left: 0;
  top: 0;
  background-size: 100% 100%;
  position: absolute;
}

.mainBox .moduleBox .mapList .cd::before {
  background: url("/static/v2/img/mapIcon/cdMap1.webp") no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .mapList .cd.select::before {
  background: url("/static/v2/img/mapIcon/cdMap2.webp") no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .mapList .cd:hover::before {
  background: url("/static/v2/img/mapIcon/cdMap2.webp") no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .mapList .bj::before {
  background: url("/static/v2/img/mapIcon/bjMap1.webp") no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .mapList .bj.select::before {
  background: url("/static/v2/img/mapIcon/bjMap2.webp") no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .mapList .bj:hover::before {
  background: url("/static/v2/img/mapIcon/bjMap2.webp") no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .mapList .sh::before {
  background: url("/static/v2/img/mapIcon/shMap1.webp") no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .mapList .sh.select::before {
  background: url("/static/v2/img/mapIcon/shMap2.webp") no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .mapList .sh:hover::before {
  background: url("/static/v2/img/mapIcon/shMap2.webp") no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .mapList .xa::before {
  background: url("/static/v2/img/mapIcon/xnMap1.webp") no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .mapList .xa.select::before {
  background: url("/static/v2/img/mapIcon/xnMap2.webp") no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .mapList .xa:hover::before {
  background: url("/static/v2/img/mapIcon/xnMap2.webp") no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .mapList .wh::before {
  background: url("/static/v2/img/mapIcon/whMap1.webp") no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .mapList .wh.select::before {
  background: url("/static/v2/img/mapIcon/whMap2.webp") no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .mapList .wh:hover::before {
  background: url("/static/v2/img/mapIcon/whMap2.webp") no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .mapList .cs::before {
  background: url("/static/v2/img/mapIcon/csMap1.webp") no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .mapList .cs.select::before {
  background: url("/static/v2/img/mapIcon/csMap2.webp") no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .mapList .cs:hover::before {
  background: url("/static/v2/img/mapIcon/csMap2.webp") no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .mapList .nj::before {
  background: url("/static/v2/img/mapIcon/njMap1.webp") no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .mapList .nj.select::before {
  background: url("/static/v2/img/mapIcon/njMap2.webp") no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .mapList .nj:hover::before {
  background: url("/static/v2/img/mapIcon/njMap2.webp") no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .mapList .sz::before {
  background: url("/static/v2/img/mapIcon/szMap1.webp") no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .mapList .sz.select::before {
  background: url("/static/v2/img/mapIcon/szMap2.webp") no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .mapList .sz:hover::before {
  background: url("/static/v2/img/mapIcon/szMap2.webp") no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .mapList .gz::before {
  background: url("/static/v2/img/mapIcon/gzMap1.webp") no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .mapList .gz.select::before {
  background: url("/static/v2/img/mapIcon/gzMap2.webp") no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .mapList .gz:hover::before {
  background: url("/static/v2/img/mapIcon/gzMap2.webp") no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .mapList .nn::before {
  background: url("/static/v2/img/mapIcon/nnMap1.webp") no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .mapList .nn.select::before {
  background: url("/static/v2/img/mapIcon/nnMap2.webp") no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .mapList .nn:hover::before {
  background: url("/static/v2/img/mapIcon/nnMap2.webp") no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .mapList .sy::before {
  background: url("/static/v2/img/mapIcon/syMap1.webp") no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .mapList .sy.select::before {
  background: url("/static/v2/img/mapIcon/syMap2.webp") no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .mapList .sy:hover::before {
  background: url("/static/v2/img/mapIcon/syMap2.webp") no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .mapList .cq::before {
  background: url("/static/v2/img/mapIcon/cqMap1.webp") no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .mapList .cq.select::before {
  background: url("/static/v2/img/mapIcon/cqMap2.webp") no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .mapList .cq:hover::before {
  background: url("/static/v2/img/mapIcon/cqMap2.webp") no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .mapList .fz::before {
  background: url("/static/v2/img/mapIcon/fzMap1.webp") no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .mapList .fz.select::before {
  background: url("/static/v2/img/mapIcon/fzMap2.webp") no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .mapList .fz:hover::before {
  background: url("/static/v2/img/mapIcon/fzMap2.webp") no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .mapList .mapInfo {
  background: #ffffff;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 8px 8px 8px 8px;
  border: 1px solid #eeeeee;
  padding: 20px;
  display: none;
  justify-content: center;
  gap: 16px;
  position: absolute;
  top: 82px;
}

.mainBox .moduleBox .mapList .select .mapInfo {
  display: flex;
}

.mainBox .moduleBox .mapList .select:nth-of-type(-n + 6) .mapInfo {
  left: 0;
}

.mainBox .moduleBox .mapList .select:nth-of-type(n + 7) .mapInfo {
  right: 0;
}

.mainBox .moduleBox .mapList .mapInfo > img {
  width: 100px;
  height: 100px;
}

.mainBox .moduleBox .mapList .mapInfo > .rightTxt {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.mainBox .moduleBox .mapList .mapInfo > .rightTxt > h1 {
  height: 18px;
  font-weight: 600;
  font-size: 16px;
  color: #333333;
  line-height: 18px;
  white-space: nowrap;
  text-align: left;
}

.mainBox .moduleBox .mapList .mapInfo > .rightTxt > p {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-weight: 350;
  font-size: 14px;
  color: #333333;
  line-height: 16px;
  white-space: nowrap;
}

.mainBox .moduleBox .mapList .mapInfo > .rightTxt > p > span {
  display: inline-flex;
  font-weight: 350;
  font-size: 14px;
  color: #666666;
  line-height: 16px;
  margin-left: 5px;
}

.mainBox .moduleBox .mapList .mapInfo > .rightTxt > .icon1::before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background: url(/static/v2/img/newHomepage/icon10.webp) no-repeat;
  background-size: 100% 100%;
  margin-right: 8px;
}

.mainBox .moduleBox .mapList .mapInfo > .rightTxt > .icon2::before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background: url(/static/v2/img/newHomepage/icon11.webp) no-repeat;
  background-size: 100% 100%;
  margin-right: 8px;
}

.mainBox .moduleBox .paper .subText {
  margin-top: 24px;
  margin-bottom: 48px;
  font-weight: 350;
  font-size: 16px;
  color: #ffffff;
  line-height: 16px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.mainBox .topSwiperBanner {
  width: 100%;
  position: relative;
}

.mainBox .topSwiperBanner .swiper-container-banner {
  width: 100%;
  height: 600px;
  /* 固定高度 */
}

.mainBox .topSwiperBanner .swiper-container-advantage {
  width: 100%;
  height: 420px;
  overflow: hidden;
  /* 固定高度 */
}

.mainBox .topSwiperBanner .swiper-pagination-banner {
  position: absolute;
  bottom: 20px;
  z-index: 10;
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

/* .mainBox .topSwiperBanner .swiper-pagination {
    position: absolute;
    bottom: -20px;
} */

/* 自定义指示器样式 */
.mainBox .moduleBox .paper .swiper-container {
  width: 100%;
  height: 552px;
  /* 固定高度 */
}

/* 
.mainBox .moduleBox .paper .swiper-pagination {

    position: absolute;
    bottom: 0px;
} */

.mainBox .paginationStyle .swiper-pagination-bullet {
  width: 48px;
  height: 4px;
  background: #6d6d6d;
  /* 默认颜色 */
  border-radius: 0;
  opacity: 0.3;
  margin: 0 8px !important;
  /* 16px间距 = 8px×2 */
  transition: all 0.3s;
  cursor: pointer;
  user-select: none;
}

.mainBox .paginationStyle .swiper-pagination-bullet-active {
  background: #ffffff;
  /* 激活状态颜色 */
  opacity: 1;
}

.mainBox .moduleBox .paper .subText > span {
  color: #5dc1cf;
}

.mainBox .moduleBox .paper .subText .rule {
  margin-left: 46px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: 16px;
  color: #5dc1cf;
  line-height: 16px;
  cursor: pointer;
}

.mainBox .moduleBox .paper .subText .rule::before {
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  background: url(/static/v2/img/newHomepage/icon12.webp) no-repeat;
  background-size: 100% 100%;
  margin-right: 4px;
}

.mainBox .moduleBox .paper .representOut {
  /* margin-top: 48px; */
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.mainBox .moduleBox .paper .representOut .represent {
  width: calc((100% - 20px) / 2);
  height: 246px;
  background: #fefefe;
  border-radius: 8px 8px 8px 8px;
  border: 1px solid #eeeeee;
  padding: 30px 40px;
  display: flex;
  justify-content: flex-start;
  gap: 27px;
}

.mainBox .moduleBox .paper .representOut .represent > img {
  width: 80px;
  height: 105px;
}

.mainBox .moduleBox .paper .representOut .represent .rText > h1 {
  width: 400px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600;
  font-size: 20px;
  color: #333333;
  line-height: 20px;
}

.mainBox .moduleBox .paper .representOut .represent .rText > h2 {
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
  font-weight: 350;
  font-size: 16px;
  color: #666666;
  line-height: 16px;
}

.mainBox .moduleBox .paper .representOut .represent .rText > .line22 {
  line-height: 24px;
}

.mainBox .moduleBox .paper .representOut .represent .rText > h2 .aTxt {
  cursor: pointer;
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: #666666;
  text-decoration: underline !important;
}

.mainBox .moduleBox .paper .representOut .represent .rText > h2 > p {
  max-width: 314px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mainBox .moduleBox .paper .representOut .represent .rText > h2 > span {
  display: inline-block;
  width: 88px;
  white-space: nowrap;
}

.mainBox .moduleBox .paper .representOut .represent .rText .font1 {
  font-family: DIN, DIN;
  font-weight: 700;
  font-size: 24px;
  color: #ffad02;
}

.mainBox .moduleBox .paper .representOut .represent .rText .font2 {
  font-weight: 600;
  font-size: 16px;
  color: #0099ad;
  line-height: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mainBox .moduleBox .maskTwo {
  position: relative;
}

.mainBox .moduleBox .maskTwo::before {
  display: block;
  content: "";
  background: linear-gradient(
    90deg,
    #f4f5f5 0%,
    #f4f5f5 60%,
    rgba(255, 255, 255, 0) 100%
  );
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 100%;
  z-index: 2;
}

.mainBox .moduleBox .maskTwo::after {
  display: block;
  content: "";
  background: linear-gradient(
    270deg,
    #f4f5f5 0%,
    #f4f5f5 60%,
    rgba(255, 255, 255, 0) 100%
  );
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 100%;
  z-index: 2;
}

.mainBox .moduleBox .customerOut {
  width: 1200px;
  margin-top: 48px;
  /* margin-top: 48px;
    display: flex;
    justify-content: flex-start;
    gap: 20px; */
  overflow: hidden;
}

.mainBox .moduleBox .customer {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  /* overflow: hidden; */
}

.mainBox .moduleBox .customer .aCard {
  /* flex: 0 0 calc((100% - 40px) / 3); */
  width: 387px;
  box-sizing: border-box;
}

.mainBox .moduleBox .customer .aCard .cTop {
  padding: 44px 20px;
  background: url(/static/v2/img/newHomepage/card1.webp) no-repeat;
  background-size: 100% 100%;
}

.mainBox .moduleBox .customer .aCard .cTop > h1 {
  height: 16px;
  font-weight: 350;
  font-size: 16px;
  color: #333333;
  line-height: 16px;
}

.mainBox .moduleBox .customer .aCard .cTop > p {
  width: 347px;
  height: 88px;
  margin-top: 20px;
  font-weight: 350;
  font-size: 14px;
  color: #666666;
  line-height: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.mainBox .moduleBox .customer .aCard .cBot {
  padding: 16px 7px 0;
  display: flex;
  justify-content: flex-start;
  gap: 22px;
}

.mainBox .moduleBox .customer .aCard .cBot > img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.mainBox .moduleBox .customer .aCard .cBot .rInfo > h1 {
  margin-top: 18px;
  height: 16px;
  font-weight: 600;
  font-size: 16px;
  color: #333333;
  line-height: 16px;
}

.mainBox .moduleBox .customer .aCard .cBot .rInfo > p {
  margin-top: 12px;
  font-weight: 350;
  font-size: 14px;
  color: #666666;
  line-height: 14px;
}

.mainBox .footer {
  padding: 80px calc((100% - 1200px) / 2);
  background: #ffffff;
}

.mainBox .footer .top {
  display: flex;
  justify-content: space-between;
}

.mainBox .footer .top .nav {
  width: 288px;
  display: flex;
  flex-wrap: wrap;
  gap: 26px 60px;
}

.mainBox .footer .top .nav > a {
  font-weight: 350;
  font-size: 14px;
  color: #333333;
  line-height: 14px;
  cursor: pointer;
}

.mainBox .footer .top .nav > a:hover {
  color: #0099ad;
}

.mainBox .footer .top .contact > div {
  width: 100%;
  font-weight: 550;
  font-size: 14px;
  color: #333333;
  line-height: 14px;
  text-align: center;
}

.mainBox .footer .top .contact > div:nth-of-type(n + 2) {
  margin-top: 30px;
}

.mainBox .footer .top .contact > div > p {
  width: 100%;
  margin-top: 6px;
  font-family: DIN, DIN;
  font-weight: 400;
  font-size: 36px;
  color: #333333;
  line-height: 36px;
  text-align: center;
}

.mainBox .footer .top .codes {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.mainBox .footer .top .codes > div > img {
  margin: 0 auto;
  display: block;
  width: 100px;
  height: 100px;
}

.mainBox .footer .top .codes > div > p {
  margin-top: 24px;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  line-height: 14px;
  text-align: center;
}

.mainBox .footer .bottom {
  margin-top: 40px;
  border-top: 2px solid #ebebeb;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mainBox .footer .bottom .textBox {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 12px;
  color: #333333;
  line-height: 12px;
  gap: 25px;
}

.mainBox .footer .bottom .textBox > a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mainBox .footer .bottom .textBox .ion {
  display: block;
  margin-right: 8px;
  width: 20px;
  height: 20px;
}

.mainBox .footer .bottom .gap10 {
  gap: 10px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-100% - 20px));
    /* 减去卡片间距 */
  }
}

.searchOut .searchBox input {
  caret-color: white;
  background-color: black;
  /* 为了更清晰地看到白色光标，设置背景为黑色 */
  color: white;
  /* 设置输入文字颜色为白色 */
}

.searchOut .yBtn {
  padding: 0 16px;
  height: 48px;
  background: rgba(247, 247, 247, 0.5);
  border-radius: 8px 8px 8px 8px;
  border: 2px solid #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  line-height: 16px;
}

.searchOut .yBtn::before {
  display: block;
  content: "";
  width: 18px;
  height: 18px;
  background: url(/static/v2/img/home7.png) no-repeat;
  background-size: 100% 100%;
}

.searchOut .searchBox {
  width: 600px;
  height: 48px;
  background: rgba(247, 247, 247, 0.5);
  border-radius: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  border: 2px solid #ffffff;
  border-radius: 8px 8px 8px 8px;
}

.searchOut .searchBox .searchImg {
  margin-left: 20px;
  flex-basis: 18px;
}

.searchOut .searchBox .searchImg > img {
  width: 18px;
  height: 18px;
}

.searchOut .searchBox .search > img {
  width: 16px;
  height: 16px;
  display: none;
}

.searchOut .searchBox > .search {
  margin: 0 0 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
}

.searchOut .searchBox .search > input {
  width: 274px;
  height: 48px;
  font-size: 16px;
  margin: 0;
  background: transparent;
  border: none;
  position: absolute;
  left: 54px;
}

input[type="text"] {
  outline: none;
  -webkit-appearance: none;
}

.searchOut .searchBox .search > input:focus {
}

/* .searchOut .searchBox .searchFocus {
 width: 440px;

}

.searchOut .searchBox .searchFocus>input {
 width: 420px;
} */

.searchOut .searchBox .tags {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.searchOut .searchBox .tags > a {
  margin-right: 10px;
  padding: 4px 12px;
  font-size: 13px;
  line-height: 18px;
  color: #ffffff;
  background: rgba(238, 238, 238, 0.2);
  border-radius: 14px;
  border-radius: 4px 4px 4px 4px;
}

.searchOut .searchBox .tags > a:hover {
  color: #ffffff;
}

.searchOut .searchBox .searchR {
  margin-right: 4px;
  margin-left: 12px;
  width: 58px;
  height: 32px;
  background: #ffffff;
  border-radius: 4px 4px 4px 4px;
  font-weight: 500;
  font-size: 13px;
  color: #a9adad;
  line-height: 32px;
  text-align: center;
  cursor: pointer;
  display: none;
}

.searchOut .searchBox .searchR > img {
  width: 18px;
  height: 18px;
  margin: 11px 20px;
  cursor: pointer;
}
